home *** CD-ROM | disk | FTP | other *** search
/ Club Amiga de Montreal - CAM / CAM_CD_1.iso / install / install cam subsystem < prev    next >
Text File  |  1994-11-04  |  3KB  |  123 lines

  1.  
  2.  
  3. ; CAM subsystem Installer script. © Almathera 1994.
  4.  
  5. ; Authored & Hack To Smeggeroonie by THP / Citrus Inc.
  6.  
  7. ;                                   <A subdivsion of Almathera Systems Ltd>
  8.  
  9.  
  10.       ; drugs/alcohol/pain/adrenalin. there must be other ways outta here.
  11.  
  12.  
  13. ; /******************************************************************************/
  14.  
  15.                                    ; Uh?
  16.  
  17. (if (= @language "english")
  18.     (
  19.     (set #copying-arplib "Copying ARP.library to LIBS:")
  20.     (set #copying-reqtoolslib "Copying ReqTools.library to LIBS:")
  21.     (set #copying-amigaguidelib "Copying AmigaGuide.library to LIBS:")
  22.     (set #copying-amigaguide  "Copying AmigaGuide to sys:Utilities/")
  23.     (set #copying-amigaguidehelp "Copying Help.Guide to s:")
  24.     (set #copying-camthing  "Copying CAMthing to C:")
  25.     (set #copying-lha  "Copying LhA 1.38 to C:")
  26.     (set src-camthing "c/CAMThing.eng")
  27.  
  28.     )
  29. )
  30.  
  31. (if (= @language "français")
  32.     (
  33.     (set #copying-arplib "Copie du fichier ARP.library vers LIBS:")
  34.     (set #copying-reqtoolslib "Copie du fichier ReqTools.library vers LIBS:")
  35.     (set #copying-amigaguidelib "Copie du fichier AmigaGuide.library vers LIBS:")
  36.     (set #copying-amigaguide  "Copie du fichier AmigaGuide vers sys:Utilities/")
  37.     (set #copying-amigaguidehelp "Copie du fichier Help.Guide vers s:")
  38.     (set #copying-camthing  "Copie du fichier CAMthing vers C:")
  39.     (set #copying-lha  "Copie du fichier LhA 1.38 vers C:")
  40.     (set src-camthing "c/CAMThing.fr")
  41.     )
  42. )
  43.  
  44. ; /******************************************************************************/
  45.  
  46.                     ; Enough kacking around, let's GO!
  47.  
  48. (copylib
  49.     (prompt "\n" #copying-arplib)
  50.     (help @copylib-help)
  51.     (source "libs/arp.library")
  52.     (dest "libs:")
  53.     (confirm)
  54. )
  55.  
  56. (copylib
  57.     (prompt "\n" #copying-amigaguidelib)
  58.     (help @copylib-help)
  59.     (source "libs/amigaguide.library")
  60.     (dest "libs:")
  61.     (confirm)
  62. )
  63.  
  64. (set reqtoolslib "libs/20/reqtools.library")
  65.  
  66. (if (< (/ (getversion) 65536) 37)
  67. (
  68.     (set reqtoolslib "libs/13/reqtools.library")
  69. ))
  70.  
  71.  
  72. (copylib
  73.     (prompt "\n" #copying-reqtoolslib)
  74.     (help @copylib-help)
  75.     (source reqtoolslib)
  76.     (dest "libs:")
  77.     (confirm)
  78. )
  79.  
  80.  
  81. ; /******************************************************************************/
  82.  
  83.  
  84. (copylib
  85.     (prompt "\n" #copying-amigaguide)
  86.     (help @copylib-help)
  87.     (source "Utilities/Amigaguide")
  88.     (dest "sys:Utilities/")
  89.     (infos)
  90.     (confirm)
  91. )
  92.  
  93.  
  94. (copylib
  95.     (prompt "\n" #copying-amigaguidehelp)
  96.     (help @copylib-help)
  97.     (source "s/Help.Guide")
  98.     (dest "s:")
  99.     (infos)
  100.     (confirm)
  101. )
  102.  
  103.  
  104. (copylib
  105.     (prompt "\n" #copying-camthing)
  106.     (help @copylib-help)
  107.     (source src-camthing)
  108.     (dest "C:")
  109.     (newname "CAMThing")
  110.     (confirm)
  111. )
  112.  
  113.  
  114. (copylib
  115.     (prompt "\n" #copying-lha)
  116.     (help @copylib-help)
  117.     (source "c/LhA")
  118.     (dest "C:")
  119.     (confirm)
  120. )
  121.  
  122.  
  123.